Writes data to a text file and implements a carriage return WriteLn(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING); Writes data to a text file but does not implement a carriage return Write(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING); Closes a currently open text file Close(FileName : TEXT); Allows the user to add text information to the end of a text file Append(FileName : TEXT); Displays the standard Macintosh file dialog which requests the user to select a text file for output PutFile(CommentStr, FileDefault : STRING; VAR FileName : TEXT); Creates a new file or opens an exixting one ReWrite(FileName : TEXT); Returns TRUE if the reading pointer of an open file has reached the end of the line or carrage return EOLN(FileName : TEXT) : BOOLEAN; Returns TRUE if the reading pointer of an open file has reached the end of the file EOF(Filename : TEXT) : BOOLEAN; Reads data from the current open text file and implements a carriage return ReadLn(VAR V1,V2, ... , Vn : INTEGER or REAL or LONGINT or CHAR or STRING); Reads data from the current open text file and does not implement a carriage return Read(VAR V1,V2, ... , Vn : INTEGER or REAL or LONGINT or CHAR or STRING); Displays the standard Macintosh file dialog which requests the user to select a text file GetFile(VAR FileName : TEXT); Opens a file for reading capability Open(FileName : TEXT);